home *** CD-ROM | disk | FTP | other *** search
- /*
-
- **************************
- **** xFX ARexx script ****
- **************************
-
-
- Create a file-disk
- */
-
-
- if ~show('P','xFX.1') then do /* Check if xFX is running */
- say 'xFX not running !'
- exit
- end
-
- InDev = ''
- OutFile = ''
-
- say 'Input device:'
- parse pull InDev
- if InDev ~= '' then do
- say 'Output file:'
- parse pull Outfile
- if OutFile ~= '' then do
- address 'xFX.1' read InDev OutFile addicon
- say 'Done.'
- end
- end
-